home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- //Borland C++Builder
- //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #ifndef CloneTabH
- #define CloneTabH
- //----------------------------------------------------------------------------
- #include <Dbtables.hpp>
-
- class TCloneTable : public TTable
- {
- private:
- _hDBIObj *FSourceHandle;
- void __fastcall SetSourceHandle(hDBICur ASourceHandle);
-
- protected:
- virtual hDBICur __fastcall CreateHandle(void);
-
- public:
- __fastcall TCloneTable(TComponent* AOwner, bool Reset);
- void __fastcall InitFromTable(TTable* SourceTable, bool Reset);
-
- /* TTable.Create */ __fastcall virtual TCloneTable(Classes::TComponent* AOwner) : Dbtables::TTable(
- AOwner) { }
- /* TTable.Destroy */ __fastcall virtual ~TCloneTable(void) { }
- };
- #endif
-